docs: use apostrophe in *'m
authorWilliam Jon McCann <william.jon.mccann@gmail.com>
Fri, 7 Feb 2014 18:42:09 +0000 (13:42 -0500)
committerWilliam Jon McCann <william.jon.mccann@gmail.com>
Fri, 7 Feb 2014 18:42:09 +0000 (13:42 -0500)
gtk/gtkpapersize.c
gtk/gtkradiobutton.c
gtk/gtktogglebutton.c

index 35905d90d337fd743109318f1ce1977f2446b00e..aced21cd52c3836e925b2d4bb44c4bd7f6f1da52 100644 (file)
@@ -709,7 +709,7 @@ gtk_paper_size_get_default (void)
  * the imageble area on any printer.
  *
  * I’ve taken the actual values used from the OSX page setup dialog.
- * I'm not sure exactly where they got these values for, but might
+ * Im not sure exactly where they got these values for, but might
  * correspond to this (from ghostscript docs):
  *
  * All DeskJets have 0.5 inches (1.27cm) of unprintable bottom margin,
index 0d93796ce95266c33efdf41098e948c46d6f711e..e4e14cc61c43450214afe91cdd0303ce2ee8a01d 100644 (file)
@@ -86,7 +86,7 @@
  *
  *    /&ast; Create a radio button with a label &ast;/
  *    radio2 = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON (radio1),
- *                                                          "I'm the second radio button.");
+ *                                                          "Im the second radio button.");
  *
  *    /&ast; Pack them into a box, then show all the widgets &ast;/
  *    gtk_box_pack_start (GTK_BOX (box), radio1, TRUE, TRUE, 2);
index c01c8eaf60db4cb0075f14c6f8e3bf7e02a1cdbe..52968658e97b0b3c13d5d558b9f03cd1229e8c36 100644 (file)
@@ -65,7 +65,7 @@
  *    GtkWidget *dialog, *toggle1, *toggle2;
  *
  *    dialog = gtk_dialog_new (<!-- -->);
- *    toggle1 = gtk_toggle_button_new_with_label ("Hi, i'm a toggle button.");
+ *    toggle1 = gtk_toggle_button_new_with_label ("Hi, im a toggle button.");
  *
  *    // Makes this toggle button invisible
  *    gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (toggle1), TRUE);
@@ -75,7 +75,7 @@
  *    gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->action_area),
  *                        toggle1, FALSE, FALSE, 2);
  *
- *    toggle2 = gtk_toggle_button_new_with_label ("Hi, i'm another toggle button.");
+ *    toggle2 = gtk_toggle_button_new_with_label ("Hi, im another toggle button.");
  *    gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (toggle2), FALSE);
  *    g_signal_connect (toggle2, "toggled",
  *                      G_CALLBACK (output_state), NULL);